home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / synth_studies / resgrep03b / source / makefile < prev    next >
Makefile  |  1999-09-15  |  455b  |  18 lines

  1.  
  2. CFLAGS= -O2
  3.  
  4. OBJS= resgrep.o resources.o export.o list.o utils.o exportedit.o settings.o \
  5.     output.o
  6.  
  7. resgrep: ${OBJS}
  8.     gcc -o resgrep ${OBJS} -lg++ -lc -lamiga
  9.  
  10. resgrep.o:   resgrep.cc resources.h utils.h
  11. resources.o: resources.cc resources.h utils.h export.h
  12. utils.o:     utils.cc utils.h
  13. export.o:    export.cc utils.h export.h
  14. exportedit.o: exportedit.cc utils.h export.h
  15. settings.o:  settings.cc export.h resgrep.h
  16. output.o:    output.cc resgrep.h
  17.  
  18.